Python localtime()方法计算今天是一年中第几周

#! /usr/bin/env python

#coding=utf-8

import time

print u"今天是今年的第",
print time.localtime()[7]/7+1,
print u"周"